home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
SCRPTEXM.PAK
/
CODECPP.DAT
< prev
next >
Wrap
Text File
|
1997-05-06
|
423b
|
18 lines
CODECPP.DAT: C++ code library file.
MAIN FILE: CODELIB.SPP
NOTES: Enter library entries. The first line of each entry must be the
entry marker, immediately followed by a description. The code begins
on the line following the description, and extends until the next
marker or EOF.
<*>Example entry: GetTimeStamp routine
PSTR GetTimeStamp( void ){
time_t t;
time( &t );
return ctime( &t );
}